GET api/clients/latestfeedbackmodifieddate?clientIds[0]={clientIds[0]}&clientIds[1]={clientIds[1]}
Gets the most recent feedback modified date againt provided clientId(s)
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientIds |
Client Id(s) to get feedback modified time against |
Collection of integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns
Dictionary of integer [key] and date [value]Response Formats
application/json, text/json
Sample:
{
"1": "2025-12-10T06:34:07.5604662-07:00",
"3": "2025-12-10T06:34:07.5604662-07:00"
}
application/xml, text/xml
Sample:
<ArrayOfKeyValueOfintdateTime xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<KeyValueOfintdateTime>
<Key>1</Key>
<Value>2025-12-10T06:34:07.5604662-07:00</Value>
</KeyValueOfintdateTime>
<KeyValueOfintdateTime>
<Key>3</Key>
<Value>2025-12-10T06:34:07.5604662-07:00</Value>
</KeyValueOfintdateTime>
</ArrayOfKeyValueOfintdateTime>